home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MTMDI.PAK / MTBOUNCE.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  58 lines

  1. // mtbounce.h : Declares the class interfaces for the Bounce
  2. //              user interface thread.
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CBounceThread thread
  16.  
  17. class CBounceThread : public CWinThread
  18. {
  19.     DECLARE_DYNCREATE(CBounceThread)
  20. protected:
  21.     CBounceThread();           // protected constructor used by dynamic creation
  22. public:
  23.     CBounceThread(HWND hwndParent);
  24.     void operator delete(void* p);
  25.  
  26. // Attributes
  27. public:
  28.     static HANDLE m_hEventBounceThreadKilled;
  29.  
  30. protected:
  31.     HWND m_hwndParent;
  32.     CBounceWnd m_wndBounce;
  33.  
  34. // Operations
  35. public:
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CBounceThread)
  40.     public:
  41.     virtual BOOL InitInstance();
  42.     virtual int ExitInstance();
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46. protected:
  47.     virtual ~CBounceThread();
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CBounceThread)
  51.         // NOTE - the ClassWizard will add and remove member functions here.
  52.     //}}AFX_MSG
  53.  
  54.     DECLARE_MESSAGE_MAP()
  55. };
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58.